home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Stacks / Hyper Sound / Sound Utilities / Sound Studio 3.0 / Sound Studio 3.0 / card_5380.txt < prev    next >
Encoding:
Text File  |  1988-04-24  |  17.7 KB  |  867 lines

  1. -- card: 5380 from stack: in.0
  2. -- bmap block id: 6415
  3. -- flags: 0000
  4. -- background id: 3919
  5. -- name: Studio
  6. ----- HyperTalk script -----
  7. on selectNote
  8.   global Note
  9.   if hilite of target is false then
  10.     if Note is not empty then
  11.       set hilite of button Note to false
  12.     end if
  13.     set hilite of target to true
  14.     put the short name of the target into Note
  15.   else
  16.     set hilite of target to false
  17.     put empty into Note
  18.   end if
  19.   PlayNote
  20. end selectNote
  21.  
  22. on selectAccidental
  23.   global Accidental,Note
  24.   if Note is empty then exit selectAccidental
  25.   if hilite of target is false then
  26.     if Accidental is not empty then
  27.       set hilite of button Accidental to false
  28.     end if
  29.     set hilite of target to true
  30.     put the short name of the target into Accidental
  31.   else
  32.     set hilite of target to false
  33.     put empty into Accidental
  34.   end if
  35.   PlayNote
  36. end selectAccidental
  37.  
  38. on selectOctave
  39.   global Octave,Note
  40.   if Note is empty then exit selectOctave
  41.   if hilite of target is false then
  42.     if Octave is not empty then
  43.       set hilite of button Octave to false
  44.     end if
  45.     set hilite of target to true
  46.     put the short name of the target into Octave
  47.   else
  48.     set hilite of target to false
  49.     put empty into Octave
  50.   end if
  51.   PlayNote
  52. end selectOctave
  53.  
  54. on selectDuration
  55.   global Duration,Note
  56.   if Note is empty then exit selectDuration
  57.   if hilite of target is false then
  58.     if Duration is not empty then
  59.       set hilite of button Duration to false
  60.     end if
  61.     set hilite of target to true
  62.     put the short name of the target into Duration
  63.   else
  64.     set hilite of target to false
  65.     put empty into Duration
  66.   end if
  67.   PlayNote
  68. end selectDuration
  69.  
  70. on selectOptions
  71.   global Options,Note
  72.   if Note is empty then exit selectOptions
  73.   if hilite of target is false then
  74.     if Options is not empty then
  75.       set hilite of button Options to false
  76.     end if
  77.     set hilite of target to true
  78.     put the short name of the target into Options
  79.   else
  80.     set hilite of target to false
  81.     put empty into Options
  82.   end if
  83.   PlayNote
  84. end selectOptions
  85.  
  86. on ConvertGlobals
  87.   Global Accidental,Octave,Options,Duration
  88.   if Accidental = "‚à´" then put b into Accidental
  89.   if Options = "¬£" then put 3 into Options
  90.   If Duration = "‚Ä∞" then put e into Duration
  91.   if Octave = not empty then
  92.     if Octave = "One" then put 1 into Octave
  93.     if Octave = "Two" then put 2 into Octave
  94.     if Octave = "Three" then put 3 into Octave
  95.     if Octave = "Four" then put 4 into Octave
  96.     if Octave = "Five" then put 5 into Octave
  97.     if Octave = "Six" then put 6 into Octave
  98.     if Octave = "Seven" then put 7 into Octave
  99.   end if
  100. end ConvertGlobals
  101.  
  102. on RevertGlobals
  103.   Global Accidental,Octave,Options,Duration
  104.   if Accidental = "b" then put "‚à´" into Accidental
  105.   if Options = "3" then put "¬£" into Options
  106.   If Duration = "e" then put "‚Ä∞" into Duration
  107.   if Octave is not empty then
  108.     if Octave = 1 then put "One" into Octave
  109.     if Octave = 2 then put "Two" into Octave
  110.     if Octave = 3 then put "Three" into Octave
  111.     if Octave = 4 then put "Four" into Octave
  112.     if Octave = 5 then put "Five" into Octave
  113.     if Octave = 6 then put "Six" into Octave
  114.     if Octave = 7 then put "Seven" into Octave
  115.   end if
  116. end RevertGlobals
  117.  
  118. on PlayNote
  119.   global Note,Accidental,Octave,Duration,Options
  120.   ConvertGlobals
  121.   if Note is empty then
  122.     play card field sound
  123.     RevertGlobals
  124.     exit PlayNote
  125.   end if
  126.   put quote&Note&Accidental&Octave&Duration&Options"e into thisNote
  127.   if card field speed is not empty then
  128.     play card field sound tempo card field speed thisnote
  129.     RevertGlobals
  130.     exit PlayNote
  131.   end if
  132.   play card field sound thisnote
  133.   RevertGlobals
  134. end PlayNote
  135.  
  136. on closecard
  137.   global Note,Accidental,Octave,Duration,Options
  138.   if Note is not empty then set hilite of button Note to false
  139.   if Accidental is not empty then set hilite of button Accidental to false
  140.   if Octave is not empty then set hilite of button Octave to false
  141.   if Duration is not empty then set hilite of button Duration to false
  142.   if Options is not empty then set hilite of button Options to false
  143.   Put empty into Note
  144.   Put empty into Accidental
  145.   Put empty into Octave
  146.   Put empty into Duration
  147.   Put empty into Options
  148. end closecard
  149.  
  150. on NextVersion
  151.   answer "Did you send a disk for the next version?" with "Uh Oh"
  152. end NextVersion
  153.  
  154.  
  155.  
  156.  
  157. -- part 1 (field)
  158. -- low flags: 01
  159. -- high flags: 0007
  160. -- rect: left=3 top=255 right=340 bottom=510
  161. -- title width / last selected line: 0
  162. -- icon id / first selected line: 0 / 0
  163. -- text alignment: 0
  164. -- font id: 3
  165. -- text size: 9
  166. -- style flags: 0
  167. -- line height: 12
  168. -- part name: 
  169.  
  170.  
  171. -- part 2 (field)
  172. -- low flags: 01
  173. -- high flags: 0001
  174. -- rect: left=0 top=32 right=49 bottom=112
  175. -- title width / last selected line: 0
  176. -- icon id / first selected line: 0 / 0
  177. -- text alignment: 0
  178. -- font id: 3
  179. -- text size: 12
  180. -- style flags: 256
  181. -- line height: 16
  182. -- part name: 
  183.  
  184.  
  185. -- part 3 (field)
  186. -- low flags: 00
  187. -- high flags: 0002
  188. -- rect: left=111 top=31 right=50 bottom=273
  189. -- title width / last selected line: 0
  190. -- icon id / first selected line: 0 / 0
  191. -- text alignment: 0
  192. -- font id: 3
  193. -- text size: 12
  194. -- style flags: 256
  195. -- line height: 16
  196. -- part name: Sound
  197.  
  198.  
  199. -- part 4 (field)
  200. -- low flags: 01
  201. -- high flags: 0001
  202. -- rect: left=413 top=32 right=49 bottom=469
  203. -- title width / last selected line: 0
  204. -- icon id / first selected line: 0 / 0
  205. -- text alignment: 0
  206. -- font id: 3
  207. -- text size: 12
  208. -- style flags: 256
  209. -- line height: 16
  210. -- part name: 
  211.  
  212.  
  213. -- part 5 (field)
  214. -- low flags: 00
  215. -- high flags: 0002
  216. -- rect: left=468 top=31 right=50 bottom=510
  217. -- title width / last selected line: 0
  218. -- icon id / first selected line: 0 / 0
  219. -- text alignment: 0
  220. -- font id: 3
  221. -- text size: 12
  222. -- style flags: 256
  223. -- line height: 16
  224. -- part name: Speed
  225.  
  226.  
  227. -- part 6 (button)
  228. -- low flags: 00
  229. -- high flags: 8005
  230. -- rect: left=13 top=74 right=93 bottom=48
  231. -- title width / last selected line: 0
  232. -- icon id / first selected line: 0 / 0
  233. -- text alignment: 1
  234. -- font id: 0
  235. -- text size: 12
  236. -- style flags: 0
  237. -- line height: 16
  238. -- part name: C
  239. ----- HyperTalk script -----
  240. on mouseUp
  241.   SelectNote
  242. end mouseUp
  243.  
  244.  
  245.  
  246. -- part 7 (button)
  247. -- low flags: 00
  248. -- high flags: 8005
  249. -- rect: left=13 top=92 right=111 bottom=48
  250. -- title width / last selected line: 0
  251. -- icon id / first selected line: 0 / 0
  252. -- text alignment: 1
  253. -- font id: 0
  254. -- text size: 12
  255. -- style flags: 0
  256. -- line height: 16
  257. -- part name: D
  258. ----- HyperTalk script -----
  259. on mouseUp
  260.   SelectNote
  261. end mouseUp
  262.  
  263.  
  264.  
  265. -- part 8 (button)
  266. -- low flags: 00
  267. -- high flags: 8005
  268. -- rect: left=13 top=110 right=129 bottom=48
  269. -- title width / last selected line: 0
  270. -- icon id / first selected line: 0 / 0
  271. -- text alignment: 1
  272. -- font id: 0
  273. -- text size: 12
  274. -- style flags: 0
  275. -- line height: 16
  276. -- part name: E
  277. ----- HyperTalk script -----
  278. on mouseUp
  279.   SelectNote
  280. end mouseUp
  281.  
  282.  
  283.  
  284. -- part 9 (button)
  285. -- low flags: 00
  286. -- high flags: 8005
  287. -- rect: left=13 top=128 right=147 bottom=48
  288. -- title width / last selected line: 0
  289. -- icon id / first selected line: 0 / 0
  290. -- text alignment: 1
  291. -- font id: 0
  292. -- text size: 12
  293. -- style flags: 0
  294. -- line height: 16
  295. -- part name: F
  296. ----- HyperTalk script -----
  297. on mouseUp
  298.   SelectNote
  299. end mouseUp
  300.  
  301.  
  302.  
  303. -- part 10 (button)
  304. -- low flags: 00
  305. -- high flags: 8005
  306. -- rect: left=13 top=146 right=165 bottom=48
  307. -- title width / last selected line: 0
  308. -- icon id / first selected line: 0 / 0
  309. -- text alignment: 1
  310. -- font id: 0
  311. -- text size: 12
  312. -- style flags: 0
  313. -- line height: 16
  314. -- part name: G
  315. ----- HyperTalk script -----
  316. on mouseUp
  317.   SelectNote
  318. end mouseUp
  319.  
  320.  
  321.  
  322. -- part 11 (button)
  323. -- low flags: 00
  324. -- high flags: 8005
  325. -- rect: left=13 top=164 right=183 bottom=48
  326. -- title width / last selected line: 0
  327. -- icon id / first selected line: 0 / 0
  328. -- text alignment: 1
  329. -- font id: 0
  330. -- text size: 12
  331. -- style flags: 0
  332. -- line height: 16
  333. -- part name: A
  334. ----- HyperTalk script -----
  335. on mouseUp
  336.   SelectNote
  337. end mouseUp
  338.  
  339.  
  340.  
  341. -- part 12 (button)
  342. -- low flags: 00
  343. -- high flags: 8005
  344. -- rect: left=13 top=182 right=201 bottom=48
  345. -- title width / last selected line: 0
  346. -- icon id / first selected line: 0 / 0
  347. -- text alignment: 1
  348. -- font id: 0
  349. -- text size: 12
  350. -- style flags: 0
  351. -- line height: 16
  352. -- part name: B
  353. ----- HyperTalk script -----
  354. on mouseUp
  355.   SelectNote
  356. end mouseUp
  357.  
  358.  
  359.  
  360. -- part 13 (button)
  361. -- low flags: 00
  362. -- high flags: 0005
  363. -- rect: left=72 top=74 right=93 bottom=154
  364. -- title width / last selected line: 0
  365. -- icon id / first selected line: 0 / 0
  366. -- text alignment: 1
  367. -- font id: 0
  368. -- text size: 12
  369. -- style flags: 0
  370. -- line height: 16
  371. -- part name: #
  372. ----- HyperTalk script -----
  373. on mouseUp
  374.   SelectAccidental
  375. end mouseUp
  376.  
  377.  
  378.  
  379. -- part 14 (button)
  380. -- low flags: 00
  381. -- high flags: 0005
  382. -- rect: left=72 top=92 right=111 bottom=154
  383. -- title width / last selected line: 0
  384. -- icon id / first selected line: 0 / 0
  385. -- text alignment: 1
  386. -- font id: 0
  387. -- text size: 12
  388. -- style flags: 0
  389. -- line height: 16
  390. -- part name: ∫
  391. ----- HyperTalk script -----
  392. on mouseUp
  393.   SelectAccidental
  394. end mouseUp
  395.  
  396.  
  397.  
  398. -- part 15 (button)
  399. -- low flags: 00
  400. -- high flags: 8005
  401. -- rect: left=172 top=74 right=93 bottom=249
  402. -- title width / last selected line: 0
  403. -- icon id / first selected line: 0 / 0
  404. -- text alignment: 1
  405. -- font id: 0
  406. -- text size: 12
  407. -- style flags: 0
  408. -- line height: 16
  409. -- part name: One
  410. ----- HyperTalk script -----
  411. on mouseUp
  412.   SelectOctave
  413. end mouseUp
  414.  
  415.  
  416.  
  417. -- part 22 (button)
  418. -- low flags: 00
  419. -- high flags: 8005
  420. -- rect: left=172 top=92 right=111 bottom=249
  421. -- title width / last selected line: 0
  422. -- icon id / first selected line: 0 / 0
  423. -- text alignment: 1
  424. -- font id: 0
  425. -- text size: 12
  426. -- style flags: 0
  427. -- line height: 16
  428. -- part name: Two
  429. ----- HyperTalk script -----
  430. on mouseUp
  431.   SelectOctave
  432. end mouseUp
  433.  
  434.  
  435.  
  436. -- part 23 (button)
  437. -- low flags: 00
  438. -- high flags: 8005
  439. -- rect: left=172 top=110 right=129 bottom=249
  440. -- title width / last selected line: 0
  441. -- icon id / first selected line: 0 / 0
  442. -- text alignment: 1
  443. -- font id: 0
  444. -- text size: 12
  445. -- style flags: 0
  446. -- line height: 16
  447. -- part name: Three
  448. ----- HyperTalk script -----
  449. on mouseUp
  450.   SelectOctave
  451. end mouseUp
  452.  
  453.  
  454.  
  455. -- part 24 (button)
  456. -- low flags: 00
  457. -- high flags: 8005
  458. -- rect: left=172 top=128 right=147 bottom=249
  459. -- title width / last selected line: 0
  460. -- icon id / first selected line: 0 / 0
  461. -- text alignment: 1
  462. -- font id: 0
  463. -- text size: 12
  464. -- style flags: 0
  465. -- line height: 16
  466. -- part name: Four
  467. ----- HyperTalk script -----
  468. on mouseUp
  469.   SelectOctave
  470. end mouseUp
  471.  
  472.  
  473.  
  474. -- part 25 (button)
  475. -- low flags: 00
  476. -- high flags: 8005
  477. -- rect: left=172 top=146 right=165 bottom=249
  478. -- title width / last selected line: 0
  479. -- icon id / first selected line: 0 / 0
  480. -- text alignment: 1
  481. -- font id: 0
  482. -- text size: 12
  483. -- style flags: 0
  484. -- line height: 16
  485. -- part name: Five
  486. ----- HyperTalk script -----
  487. on mouseUp
  488.   SelectOctave
  489. end mouseUp
  490.  
  491.  
  492.  
  493. -- part 26 (button)
  494. -- low flags: 00
  495. -- high flags: 8005
  496. -- rect: left=172 top=164 right=183 bottom=249
  497. -- title width / last selected line: 0
  498. -- icon id / first selected line: 0 / 0
  499. -- text alignment: 1
  500. -- font id: 0
  501. -- text size: 12
  502. -- style flags: 0
  503. -- line height: 16
  504. -- part name: Six
  505. ----- HyperTalk script -----
  506. on mouseUp
  507.   SelectOctave
  508. end mouseUp
  509.  
  510.  
  511.  
  512. -- part 27 (button)
  513. -- low flags: 00
  514. -- high flags: 8005
  515. -- rect: left=172 top=182 right=201 bottom=249
  516. -- title width / last selected line: 0
  517. -- icon id / first selected line: 0 / 0
  518. -- text alignment: 1
  519. -- font id: 0
  520. -- text size: 12
  521. -- style flags: 0
  522. -- line height: 16
  523. -- part name: Seven
  524. ----- HyperTalk script -----
  525. on mouseUp
  526.   SelectOctave
  527. end mouseUp
  528.  
  529.  
  530.  
  531. -- part 28 (button)
  532. -- low flags: 00
  533. -- high flags: 0005
  534. -- rect: left=267 top=74 right=93 bottom=378
  535. -- title width / last selected line: 0
  536. -- icon id / first selected line: 0 / 0
  537. -- text alignment: 1
  538. -- font id: 0
  539. -- text size: 12
  540. -- style flags: 0
  541. -- line height: 16
  542. -- part name: w
  543. ----- HyperTalk script -----
  544. on mouseUp
  545.   SelectDuration
  546. end mouseUp
  547.  
  548.  
  549.  
  550. -- part 29 (button)
  551. -- low flags: 00
  552. -- high flags: 0005
  553. -- rect: left=267 top=92 right=111 bottom=378
  554. -- title width / last selected line: 0
  555. -- icon id / first selected line: 0 / 0
  556. -- text alignment: 1
  557. -- font id: 0
  558. -- text size: 12
  559. -- style flags: 0
  560. -- line height: 16
  561. -- part name: h
  562. ----- HyperTalk script -----
  563. on mouseUp
  564.   SelectDuration
  565. end mouseUp
  566.  
  567.  
  568.  
  569. -- part 30 (button)
  570. -- low flags: 00
  571. -- high flags: 0005
  572. -- rect: left=267 top=110 right=129 bottom=378
  573. -- title width / last selected line: 0
  574. -- icon id / first selected line: 0 / 0
  575. -- text alignment: 1
  576. -- font id: 0
  577. -- text size: 12
  578. -- style flags: 0
  579. -- line height: 16
  580. -- part name: q
  581. ----- HyperTalk script -----
  582. on mouseUp
  583.   SelectDuration
  584. end mouseUp
  585.  
  586.  
  587.  
  588. -- part 31 (button)
  589. -- low flags: 00
  590. -- high flags: 0005
  591. -- rect: left=267 top=128 right=147 bottom=378
  592. -- title width / last selected line: 0
  593. -- icon id / first selected line: 0 / 0
  594. -- text alignment: 1
  595. -- font id: 0
  596. -- text size: 12
  597. -- style flags: 0
  598. -- line height: 16
  599. -- part name: ‰
  600. ----- HyperTalk script -----
  601. on mouseUp
  602.   SelectDuration
  603. end mouseUp
  604.  
  605.  
  606.  
  607. -- part 32 (button)
  608. -- low flags: 00
  609. -- high flags: 0005
  610. -- rect: left=267 top=146 right=165 bottom=378
  611. -- title width / last selected line: 0
  612. -- icon id / first selected line: 0 / 0
  613. -- text alignment: 1
  614. -- font id: 0
  615. -- text size: 12
  616. -- style flags: 0
  617. -- line height: 16
  618. -- part name: s
  619. ----- HyperTalk script -----
  620. on mouseUp
  621.   SelectDuration
  622. end mouseUp
  623.  
  624.  
  625.  
  626. -- part 33 (button)
  627. -- low flags: 00
  628. -- high flags: 0005
  629. -- rect: left=267 top=164 right=183 bottom=378
  630. -- title width / last selected line: 0
  631. -- icon id / first selected line: 0 / 0
  632. -- text alignment: 1
  633. -- font id: 0
  634. -- text size: 12
  635. -- style flags: 0
  636. -- line height: 16
  637. -- part name: t
  638. ----- HyperTalk script -----
  639. on mouseUp
  640.   SelectDuration
  641. end mouseUp
  642.  
  643.  
  644.  
  645. -- part 34 (button)
  646. -- low flags: 00
  647. -- high flags: 0005
  648. -- rect: left=267 top=182 right=201 bottom=378
  649. -- title width / last selected line: 0
  650. -- icon id / first selected line: 0 / 0
  651. -- text alignment: 1
  652. -- font id: 0
  653. -- text size: 12
  654. -- style flags: 0
  655. -- line height: 16
  656. -- part name: x
  657. ----- HyperTalk script -----
  658. on mouseUp
  659.   SelectDuration
  660. end mouseUp
  661.  
  662.  
  663.  
  664. -- part 35 (button)
  665. -- low flags: 00
  666. -- high flags: 0005
  667. -- rect: left=400 top=75 right=94 bottom=489
  668. -- title width / last selected line: 0
  669. -- icon id / first selected line: 0 / 0
  670. -- text alignment: 1
  671. -- font id: 0
  672. -- text size: 12
  673. -- style flags: 0
  674. -- line height: 16
  675. -- part name: .
  676. ----- HyperTalk script -----
  677. on mouseUp
  678.   SelectOptions
  679. end mouseUp
  680.  
  681.  
  682.  
  683. -- part 36 (button)
  684. -- low flags: 00
  685. -- high flags: 0005
  686. -- rect: left=400 top=93 right=112 bottom=489
  687. -- title width / last selected line: 0
  688. -- icon id / first selected line: 0 / 0
  689. -- text alignment: 1
  690. -- font id: 0
  691. -- text size: 12
  692. -- style flags: 0
  693. -- line height: 16
  694. -- part name: £
  695. ----- HyperTalk script -----
  696. on mouseUp
  697.   SelectOptions
  698. end mouseUp
  699.  
  700.  
  701.  
  702. -- part 37 (button)
  703. -- low flags: 00
  704. -- high flags: A000
  705. -- rect: left=20 top=220 right=241 bottom=119
  706. -- title width / last selected line: 0
  707. -- icon id / first selected line: 0 / 0
  708. -- text alignment: 1
  709. -- font id: 0
  710. -- text size: 12
  711. -- style flags: 0
  712. -- line height: 16
  713. -- part name: Sound Library
  714. ----- HyperTalk script -----
  715. on mousedown
  716.   visual scroll right very fast
  717.   go card 3
  718. end mousedown
  719.  
  720.  
  721.  
  722. -- part 38 (button)
  723. -- low flags: 00
  724. -- high flags: A004
  725. -- rect: left=132 top=220 right=242 bottom=232
  726. -- title width / last selected line: 0
  727. -- icon id / first selected line: 0 / 0
  728. -- text alignment: 1
  729. -- font id: 0
  730. -- text size: 12
  731. -- style flags: 0
  732. -- line height: 16
  733. -- part name: Play Note
  734. ----- HyperTalk script -----
  735. on mouseUp
  736.   PlayNote
  737. end mouseUp
  738.  
  739.  
  740.  
  741. -- part 39 (button)
  742. -- low flags: 00
  743. -- high flags: A004
  744. -- rect: left=241 top=220 right=242 bottom=341
  745. -- title width / last selected line: 0
  746. -- icon id / first selected line: 0 / 0
  747. -- text alignment: 1
  748. -- font id: 0
  749. -- text size: 12
  750. -- style flags: 0
  751. -- line height: 16
  752. -- part name: Add Note
  753. ----- HyperTalk script -----
  754. on mouseUp
  755.   NextVersion
  756. end mouseUp
  757.  
  758.  
  759.  
  760. -- part 41 (button)
  761. -- low flags: 00
  762. -- high flags: A004
  763. -- rect: left=351 top=220 right=242 bottom=451
  764. -- title width / last selected line: 0
  765. -- icon id / first selected line: 0 / 0
  766. -- text alignment: 1
  767. -- font id: 0
  768. -- text size: 12
  769. -- style flags: 0
  770. -- line height: 16
  771. -- part name: Play Tune
  772. ----- HyperTalk script -----
  773. on mouseUp
  774.   NextVersion
  775. end mouseUp
  776.  
  777.  
  778.  
  779. -- part 42 (button)
  780. -- low flags: 00
  781. -- high flags: A004
  782. -- rect: left=396 top=124 right=146 bottom=496
  783. -- title width / last selected line: 0
  784. -- icon id / first selected line: 0 / 0
  785. -- text alignment: 1
  786. -- font id: 0
  787. -- text size: 12
  788. -- style flags: 0
  789. -- line height: 16
  790. -- part name: Get Sound
  791. ----- HyperTalk script -----
  792. on mouseUp
  793.   NextVersion
  794. end mouseUp
  795.  
  796.  
  797.  
  798. -- part 43 (button)
  799. -- low flags: 00
  800. -- high flags: A004
  801. -- rect: left=397 top=150 right=172 bottom=497
  802. -- title width / last selected line: 0
  803. -- icon id / first selected line: 0 / 0
  804. -- text alignment: 1
  805. -- font id: 0
  806. -- text size: 12
  807. -- style flags: 0
  808. -- line height: 16
  809. -- part name: Get Tune
  810. ----- HyperTalk script -----
  811. on mouseUp
  812.   NextVersion
  813. end mouseUp
  814.  
  815.  
  816.  
  817. -- part 44 (button)
  818. -- low flags: 00
  819. -- high flags: A004
  820. -- rect: left=397 top=177 right=199 bottom=497
  821. -- title width / last selected line: 0
  822. -- icon id / first selected line: 0 / 0
  823. -- text alignment: 1
  824. -- font id: 0
  825. -- text size: 12
  826. -- style flags: 0
  827. -- line height: 16
  828. -- part name: Save Tune
  829. ----- HyperTalk script -----
  830. on mouseUp
  831.   NextVersion
  832. end mouseUp
  833.  
  834.  
  835.  
  836. -- part contents for card part 2
  837. ----- text -----
  838. Current Sound:
  839.  
  840. -- part contents for card part 4
  841. ----- text -----
  842. Tempo:
  843.  
  844. -- part contents for card part 3
  845. ----- text -----
  846. boing
  847.  
  848. -- part contents for card part 5
  849. ----- text -----
  850. 100
  851.  
  852. -- part contents for card part 1
  853. ----- text -----
  854. Coming in version 3.1 --
  855. Clicking on 'Add Note' will allow you to add the current note to your tune.
  856. Clicking on 'Play Tune' will allow you to play the whole tune.
  857. Clicking on 'Get Sound' will give you a list of all available sounds you can use.
  858. Clicking on 'Get Tune' will allow you to load a tune you have saved.
  859. Clicking on 'Save Tune' will allow you to save a tune to disk.
  860. To get a free update, just send a stamped, self addressed envelope to:
  861.  
  862. Steve Drazga
  863. 450 Byberry Road #1
  864. Phila, PA  19116
  865. Be sure to include a disk (filled with any sounds or stacks you have).
  866.  
  867.